- /* srmstlng.cpp by K.Tsuru */
- // function ID = 805 BRADIX
- /*****************************
- SRational class
- It sets a value by a long one.
- ******************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- void SRational::SetLong(long n, long d){
- num.SetLong(n); den.SetLong(d);
- reduceDone = false; DenCheck();
- }